-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: extract fetching the schema #33
Conversation
Thanks for you PR @mathieutu! I took the liberty of renaming the method |
@emil-nasso @ttrig can you please have a look at this? |
Actually now I'm playing with extending/replacing the whole shema, maybe we can split that in a public function schema(): \GraphQL\Type\Schema
{
return BuildSchema::build($this->getSDLSchema(), [$this, 'decorateTypeConfig']);
} |
@mathieutu I'm thinking |
Conflicts fixed and commits squashed in #40 |
Hi,
I've extracted an getSchema methods, which allows to override it to get several scheme, merge them, or custom the way we get it generally.
Thanks.